home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / SERVER / makefile next >
Makefile  |  1990-12-19  |  4KB  |  87 lines

  1. CCFLAGS =   -I.. -I../SUNWINDOW -I../SUNOS
  2. LIB     =   -lsuntool -lsunwindow -lpixrect -lm ../IO/libCC.a
  3.  
  4. .SUFFIXES: .C
  5.  
  6. .C.o:
  7.     etCC $(CCFLAGS) -c $<
  8.  
  9. OFILES  =   ServerSystem.o \
  10.         ServerBitmap.o \
  11.         ServerFont.o \
  12.         ServerConnection.o \
  13.         ServerPort.o
  14.  
  15. all:    sunserver.o
  16.  
  17. sunserver.o:   $(OFILES)
  18.     $(LD) -X -r -o sunserver.o $(OFILES)
  19.     
  20. #-------------------------------------------------------------------------------
  21. # sunwindow server
  22. #-------------------------------------------------------------------------------
  23.  
  24. SERVERO =   Server.o \
  25.         ../SUNWINDOW/sun.o \
  26.         ../ofiles2.o \
  27.         ../ofiles1.o
  28.  
  29. server: $(SERVERO)
  30.     etCC -o server $(SERVERO) $(LIB)
  31.  
  32. #--------------------------------------------------------------------------------
  33.  
  34. depend:
  35.     etmakedep $(CCFLAGS) *.[cC]
  36.  
  37. clean:
  38.     rm -f core $(OFILES) *..c errs 
  39.  
  40. clobber:    clean
  41.     rm -f sunserver.o server makefile.bak .MAP/*.map
  42.  
  43. touch:
  44.     $(MAKE) -t
  45.  
  46.  
  47. # DO NOT DELETE THIS LINE -- make depend depends on it.
  48.  
  49. Server.o: ../String.h ../Types.h ../IO/stream.h ../Types.h ../Storage.h
  50. Server.o: ../CType.h ../Error.h ../IO/stdio.h ../SUNOS/SunSystem.h
  51. Server.o: ../System.h ../Object.h ../Root.h ../CmdNo.h ../Class.h
  52. Server.o: ../Directory.h ../SUNWINDOW/sunsockets.h
  53. Server.o: ../SUNWINDOW/SunWindowPort.h ../WindowPort.h ../Port.h ../Point.h
  54. Server.o: ../Metric.h ../Rectangle.h ../Font.h ../Ink.h ../Bitmap.h
  55. Server.o: ../Token.h ../WindowSystem.h ../SUNWINDOW/SunWindowSystem.h
  56. Server.o: ../SUNWINDOW/SunBitmap.h ../DevBitmap.h ../SUNWINDOW/SunFont.h
  57. Server.o: Server.h
  58. ServerBitmap.o: ../DevBitmap.h ../Root.h ../Types.h ../IO/stream.h ../Types.h
  59. ServerBitmap.o: ../Point.h ../Class.h ../Object.h ../CmdNo.h ServerBitmap.h
  60. ServerBitmap.o: ../Bitmap.h ../Port.h ../System.h ../Metric.h ../Rectangle.h
  61. ServerBitmap.o: ../Font.h ../Ink.h ../Token.h ServerConnection.h
  62. ServerBitmap.o: ../WindowPort.h ../WindowSystem.h Server.h
  63. ServerConnection.o: ServerConnection.h ../WindowPort.h ../Port.h ../System.h
  64. ServerConnection.o: ../Object.h ../Root.h ../Types.h ../IO/stream.h
  65. ServerConnection.o: ../Types.h ../CmdNo.h ../Class.h ../Point.h ../Metric.h
  66. ServerConnection.o: ../Rectangle.h ../Font.h ../Ink.h ../Bitmap.h ../Token.h
  67. ServerConnection.o: ../WindowSystem.h Server.h ServerPort.h ../Error.h
  68. ServerConnection.o: ../String.h ../Storage.h ../CType.h ../SUNOS/sunsystem.h
  69. ServerConnection.o: ../SUNWINDOW/sunsockets.h ../IO/stdio.h
  70. ServerFont.o: ServerFont.h ../Font.h ../Root.h ../Rectangle.h ../Metric.h
  71. ServerFont.o: ../Point.h ../Types.h ../IO/stream.h ../Types.h ../Class.h
  72. ServerFont.o: ../Object.h ../CmdNo.h ../String.h ../Storage.h ../CType.h
  73. ServerFont.o: ServerConnection.h ../WindowPort.h ../Port.h ../System.h
  74. ServerFont.o: ../Ink.h ../Bitmap.h ../Token.h ../WindowSystem.h Server.h
  75. ServerPort.o: ServerPort.h ../WindowPort.h ../Port.h ../System.h ../Object.h
  76. ServerPort.o: ../Root.h ../Types.h ../IO/stream.h ../Types.h ../CmdNo.h
  77. ServerPort.o: ../Class.h ../Point.h ../Metric.h ../Rectangle.h ../Font.h
  78. ServerPort.o: ../Ink.h ../Bitmap.h ../Token.h ../WindowSystem.h Server.h
  79. ServerPort.o: ../Error.h ../String.h ../Storage.h ../CType.h ServerFont.h
  80. ServerPort.o: ServerBitmap.h ServerConnection.h
  81. ServerSystem.o: ServerSystem.h ../WindowSystem.h ../Port.h ../System.h
  82. ServerSystem.o: ../Object.h ../Root.h ../Types.h ../IO/stream.h ../Types.h
  83. ServerSystem.o: ../CmdNo.h ../Class.h ../Point.h ../Metric.h ../Rectangle.h
  84. ServerSystem.o: ../Font.h ../Ink.h ../Bitmap.h ../Token.h ServerPort.h
  85. ServerSystem.o: ../WindowPort.h Server.h ServerFont.h ServerBitmap.h
  86. ServerSystem.o: ServerConnection.h
  87.